armv7: fix order of OMAP die ID printing
authorLadislav Michl <[email protected]>
Thu, 2 Jun 2016 09:43:16 +0000 (11:43 +0200)
committerTom Rini <[email protected]>
Mon, 6 Jun 2016 17:39:17 +0000 (13:39 -0400)
Signed-off-by: Ladislav Michl <[email protected]>
Acked-by: Enric Balletbo i Serra <[email protected]>
arch/arm/cpu/armv7/omap-common/utils.c

index 52ea7342dfb79b0e0c71236f5b9efb83b08295fa..2d03ebfbd3da42c2fca1c723fe71f943a5cc2de3 100644 (file)
@@ -108,6 +108,6 @@ void omap_die_id_display(void)
 
        omap_die_id(die_id);
 
-       printf("OMAP die ID: %08x%08x%08x%08x\n", die_id[0], die_id[1],
-               die_id[2], die_id[3]);
+       printf("OMAP die ID: %08x%08x%08x%08x\n", die_id[3], die_id[2],
+               die_id[1], die_id[0]);
 }